官网献上:
https://entgo.io/docs/getting-started/
其亮点是,用代码来描述数据(Entity)以及数据之间的关系(Edges)
// Edges of the User.
func (User) Edges() []ent.Edge {
return []ent.Edge{
edge.To("cars", Car.Type),
}
}
其它亮点,继续探索吧。
可以快速搭建CRUD 相关应用
官网献上:
https://entgo.io/docs/getting-started/
其亮点是,用代码来描述数据(Entity)以及数据之间的关系(Edges)
// Edges of the User.
func (User) Edges() []ent.Edge {
return []ent.Edge{
edge.To("cars", Car.Type),
}
}
其它亮点,继续探索吧。
可以快速搭建CRUD 相关应用